home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / CalendarDate.idl < prev    next >
Text File  |  1996-05-01  |  991b  |  50 lines

  1. /*
  2.      File:        CalendarDate.idl
  3.  
  4.      Contains:    SOM Class definition for CalendarDateObjects
  5.  
  6.      Version:    Technology:    System 8.0
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1995-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16. */
  17.  
  18.  
  19. #ifndef __CALENDARDATE__
  20. #define __CALENDARDATE__
  21.  
  22. #include <somobj.idl>
  23. #include <somcls.idl>
  24. #include <Types.idl>
  25.  
  26. interface TCalendarDate : SOMObject
  27. {
  28.     attribute    UInt32         fCalendarRef;
  29.  
  30.     OptionBits    ValidateCalendarDate(in OptionBits fieldSelector);
  31.     
  32. #ifdef __SOMIDL__
  33.     implementation
  34.     {    
  35.         passthru C_h_before = "#include <TimeObjects.h>";
  36.         releaseorder:     _get_fCalendarRef, 
  37.                         _set_fCalendarRef,
  38.                         ValidateCalendarDate;
  39.         somInit: override;
  40.         majorversion = 1;
  41.         minorversion = 1;
  42.         
  43.     };
  44. #endif
  45.  
  46. };
  47.  
  48. #endif
  49.  
  50.